home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / pbaseiv.zip / P4MSC006.TIP < prev    next >
Text File  |  1991-12-16  |  3KB  |  88 lines

  1. As a LAN administrator, I need to make sure my Novell
  2. NetWare network remains secure. To do so, I run AUDITLAN.BAT
  3. [see listing below] every weekend to perform these security
  4. checks:
  5.  
  6.   Check for short or easy-to-guess passwords by running the
  7.   Novell SECURITY program
  8.  
  9.   List EXE or COM files that have appeared in public
  10.   directories in the last week, so I can keep an eye on new,
  11.   unauthorized programs that may be viruses or Trojan horses
  12.  
  13.   Run the CHKDIR program on all directories with space
  14.   restrictions, to make sure no one is running out of room
  15.   Check the integrity of the hard disk volume with the
  16.   CHKVOL utility
  17.  
  18.   Send a complete report to the network printer
  19.  
  20. To use AUDITLAN.BAT, call the batch file from the DOS prompt
  21. using the current date (e.g. 9-1-91) as a parameter. You
  22. must have supervisor privileges on the LAN for this batch
  23. file to run properly.
  24.  
  25. Rick R. Monnin
  26. Arlington Heights, Illinois
  27.  
  28. Editor's note: Every LAN administrator should run a batch
  29. file like this one at least once a week, although you will
  30. want to change directory and print queue names to match your
  31. system. You can copy the listing below to a file by pressing
  32. Alt-F, then modify it to work with your system. If your
  33. version of NetWare doesn't come with the SECURITY.EXE
  34. program, remove line 10 from the batch file.
  35.  
  36. Scanning for COM and EXE files with dates more recent than
  37. last week may not be sufficient to flush out viruses or
  38. Trojan horse programs; a "smart" virus or a human
  39. infiltrator can defeat this test by resetting the file's
  40. date. I recommend that you add a commercial virus scanner,
  41. such as McAfee's Netscan, to the weekly audit.
  42.  
  43.  
  44. AUDITLAN.BAT
  45.  
  46. ---- BEGIN LISTING ----
  47. @ECHO OFF
  48. MAP I:=SYS:
  49. CAPTURE q=LASER1
  50. CLS
  51. ECHO Working, please wait....
  52. I:
  53. CD \SYSTEM
  54. ECHO System Security Check Report > PRN
  55. SYSTIME > PRN
  56. SECURITY > PRN
  57. CD ..
  58. ENDCAP
  59. SYSTIME > PRN
  60. CAPTURE q=LASER1
  61. ECHO Search for new .EXE and .COM files on SYS: > PRN
  62. SYSTIME > PRN
  63. NDIR ALL *.EXE CREATE AFT %1 > PRN
  64. NDIR ALL *.COM CREATE AFT %1 > PRN
  65. ENDCAP
  66. CAPTURE q=LASER1
  67. SYSTIME > PRN
  68. ECHO SYS: Restricted Directory Size Report > PRN
  69. I:
  70. CD \DEPT91
  71. CHKDIR > PRN
  72. CD \DEPT94
  73. CHKDIR > PRN
  74. REM ** Repeat for other directories of interest
  75. CD \
  76. ENDCAP
  77. CAPTURE q=LASER1
  78. SYSTIME > PRN
  79. CHKVOL * > PRN
  80. ENDCAP
  81. ---- END LISTING ----
  82.  
  83. Title: NetWare Security Audit
  84. Category: MSC
  85. Issue date: Sep 1991
  86. Editor: Brett Glass
  87. Supplementary files: NONE
  88.